home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
COMM
/
TB042.ARJ
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-07-07
|
2KB
|
53 lines
@echo off
Echo ---
Echo Welcome to the TurBoard BBS system!
Echo ---
Echo Make sure you have PKUNZIP.EXE in your current path or in this
Echo directory. If you do not, press Ctrl-C and copy it there. Otherwise,
pause
Echo ---
Echo Setting up help screens, welcome screens, etc...
md text
if errorlevel=1 goto errorout
pkunzip tbtext text
if errorlevel=1 goto errorout
Echo ---
Echo Setting up menus, special messages, and the advertisement catagories...
md yak
if errorlevel=1 goto errorout
pkunzip tbyak yak
if errorlevel=1 goto errorout
md ads
if errorlevel=1 goto errorout
copy catagory.dat ads
if errorlevel=1 goto errorout
Echo ---
Echo Cleaning up . . .
erase TBYAK.ZIP
if errorlevel=1 goto errorout
erase TBTEXT.ZIP
if errorlevel=1 goto errorout
erase TBart.ZIP
if errorlevel=1 goto errorout
erase CATAGORY.DAT
if errorlevel=1 goto errorout
erase README.TXT
if errorlevel=1 goto errorout
Echo ---
Echo ALL DONE!!! Now you are ready to start the TurBoard BBS program!
Echo (you may wish to delete INSTALL.BAT, but it is not required.)
Echo Enter TB at the DOS prompt to start TurBoard!
goto end;
:errorout
Echo ---
Echo ERROR! Most likely, you do not have PKUNZIP.EXE in this directory.
Echo Also, if you have alread run INSTALL, you do not need to run again.
Echo There is a possibility that you have run out of disk space also, if
Echo so, refer to the TB???.DOC manual to install turboard manually.
Echo ---
Echo This program is optional -- you may want to start TurBoard with out
Echo the menus and so forth, if so, use the command TB at the DOS prompt.
:end
Echo --- :)